html,
body {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  line-height: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

/* Style Sidebar */

/* Header Start */

.header {
  position: fixed;
  top: 0;
  float: left;
  width: 100%;
  z-index: 99;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Saat di-scroll, tambahkan kelas .scrolled */
#main-header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#backToTop {
  position: absolute;
  top: 15%;
  right: 8%;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;

  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: white;

  .arrow-top {
    width: 24px;
    height: 24px;
  }
}

/* #backToTop:hover {
  background-color: #0056b3;
} */

/* Saat tombol muncul */
#backToTop.show {
  opacity: 1;
  visibility: visible;
}

.header-table {
  display: table-cell;
  vertical-align: middle;
}

.box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.box-header .logo {
  width: 100px;
}

.box-togle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.box-togle .btn-light {
  border: 0;
}

.box-togle .btn-light:hover {
  color: #212529;
  background-color: transparent;
  border-color: transparent;
}

.box-togle .btn-primary {
  border: 0;
  background: var(--primary);
  border-radius: 40px;
  padding: 14px 20px;
  font-family: "Funnel Display", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 100%;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0px 0px 16px 0px #F36D3799;
}

.box-togle .btn-primary:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-togle {
  padding: 0;
  background-color: transparent;
}

.btn-togle:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0);
}

.btn-togle.active.focus,
.btn-togle.active:focus,
.btn-togle.focus,
.btn-togle:active.focus,
.btn-togle:active:focus,
.btn-togle:focus {
  outline: 0px auto -webkit-focus-ring-color;
  outline-offset: -0px;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.ml-auto,
.mx-auto {
  margin-left: auto !important;
  margin-right: 30px;
}

#sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  z-index: 10011;
  background: var(--primary);
  overflow-y: scroll;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.945, 0.02, 0.27, 0.665);
  transition: all 0.3s;
  transform-origin: bottom left;
}

#sidebar.active {
  right: 0;
}

#dismiss {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 20px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.overlay.active {
  display: block;
  opacity: 1;
}

#sidebar .sidebar-header {
  padding: 20px;
  background: #121212;
  padding-left: 50px;
}

#sidebar ul.components {
  padding: 20px 0;
  margin-top: 5rem;
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
}

/* #sidebar ul li:hover {
  color: #000;
  background: #fff;
}

#sidebar ul li.active,
a[aria-expanded="true"] {
  color: #fff;
  background: var(--primary);
} */

a[data-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.box-sidebar {
  ul {
    li {
      padding: 10px 20px;
      text-align: start;
      border-bottom: 1px solid var(--white);

      &:last-child {
        border-bottom: transparent;
      }

      a {
        text-decoration: none;
        font-family: 'Funnel Display', sans-serif;
        font-weight: 600;
        font-size: 24px;
        line-height: 100%;
        text-align: start;
        color: var(--white);
        text-align: start;
      }

      ul {
        list-style: none;
        padding-left: 0;

        li {
          border: none;
          padding: 5px 0;

          a {
            font-family: 'Funnel Display', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            text-align: start;
            color: var(--white);
          }
        }
      }
    }
  }

  .accordion-item {
    border: none;
    background-color: transparent;

    .accordion-button {
      padding: 0;
      font-family: 'Funnel Display', sans-serif;
      font-weight: 600;
      font-size: 24px;
      line-height: 100%;
      text-align: start;
      color: var(--white);
      background-color: transparent;
    }

    .accordion-button::after {
      background-image: url('../icon/add.svg');
    }

    .accordion-button:not(.collapsed)::after {
      background-image: url('../icon/remove.svg');
    }

    .accordion-body {
      padding: 0;
      margin-top: 10px;
    }
  }
}

.nav-item .btn-primary {
  width: 238px;
  height: 50px;
  font-weight: bold;
  font-size: 18px;
  line-height: 34px;
  color: #fff !important;
  /* background: linear-gradient(270deg, #2BAFF9 0%, #415FE5 100%); */
  background: var(--primary);
  border-radius: 40px;
  cursor: pointer;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  height: 100vh !important;
}

.box-icon-inside {
  position: absolute;
  bottom: 30px;
  right: 20px;
}

.box-icon-inside img {
  width: 35px;
  height: 35px;
}

/* Style Sidebar End */

#content {
  float: left;
  width: 100%;
  min-height: 100vh;
  transition: all 0.3s;
}

/* Style Parallax */

.keyart,
.keyart_layer {
  height: 100vh;
  width: 100%;
}

#parallax {
  background-color: white;
}

.nonparallax-text {
  position: absolute;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box-nonparallax {
  float: left;
  width: 100%;
  display: block;

  .nonparallax-phone {
    object-fit: cover;
    object-position: center;
  }
}

/* .box-nonparallax .nonparallax-phone,
.box-nonparallax .nonparallax-tablet {
  float: left;
  width: 100%;
  display: none;
} */

.box-btn-request,
.box-learn-more {
  float: left;
  width: 100%;
  text-align: center;
}

.box-btn-request {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  display: none;
}

.box-btn-request .btn-primary {
  height: 45px;
  padding: 13px 28px;
  background: var(--primary);
  border-radius: 40px;
  font-size: 14px;
  line-height: 18px;
  color: #dddddd;
  margin: 30px 0 20px;
}

.box-learn-more p {
  font-size: 12px;
  line-height: 16px;
  color: #303030;
}

.learn-more-icon a,
.learn-more-icon a:hover,
.learn-more-icon a:focus {
  margin: 0;
  text-align: center;
}

.keyart {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  display: none;
}

.keyart_layer.parallax {
  position: fixed;
}

.keyart_layer {
  width: 100%;
  height: 100vh;
}

.keyart_layer .img-parallax {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: top;
}

#nonparallax {
  display: none;
  width: 100%;
}

#nonparallax .nonparallax-phone,
#nonparallax .nonparallax-tablet {
  display: none;
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: bottom;
}

/* Style Parallax End */

#section2-home {
  float: left;
  width: 100%;
  color: #fff;
}

.box-image-logo h5 {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 15px;
}

.box-container {
  float: left;
  width: 100%;
  position: absolute;
  z-index: 90;
  background-color: var(--white);
}

.box-our-service {
  background-color: #fff;
  color: #000;
  padding-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box-our-service .box-text,
.box-our-service .box-service {
  float: left;
  width: 50%;
  gap: 32px;
}

.box-our-service h6 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
}

.box-our-service h5 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
}

.highlight {
  display: inline;
  background-image: linear-gradient(120deg, #b4ff33 0%, #b4ff33 100%);
  background-repeat: no-repeat;
  background-size: 100% 15px;
  background-position: 0 88%;
  font-weight: bold;
}

.box-our-service p {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
}

/* ============== */
.box-service {
  position: relative;
}

.box-content-service {
  float: left;
  width: 80%;
}

.box-service-list {
  position: relative;
  z-index: 2;
}

.box-service .img-bg {
  position: absolute;
  left: 12%;
  top: 15%;
  width: 76%;
  height: 76%;
}

.service-list {
  position: relative;
  float: left;
  width: 180px;
  height: 218px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.service-list.tc {
  margin-top: 20px;
  margin-left: 30px;
}

.service-list.pi {
  margin-top: -30px;
}

.service-list h6 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  text-align: center;
}

.service-list .img-service {
  width: 128px;
  height: 128px;
}

.service-list .box-button {
  position: absolute;
  bottom: -5%;

  button {
    width: 52px;
    height: 52px;
    border: 4px solid #3563ee;
    padding: 0;

    img {
      width: 20px;
      height: 20px;
    }
  }
}

/* ============== */



.box-feature-container {
  float: left;
  width: 80%;
  margin: 0 10% 30px;
  position: relative;
  top: -170px;
  color: #000;
}

.feature-container-inner {
  float: left;
  width: 106.5%;
  margin: 0 0 0 -3%;
}

.box-feature-container-description {
  float: left;
  width: 80%;
  margin-left: 10%;
  position: relative;
  top: -120px;
  color: #000;
  margin-bottom: 2rem;
}

.box-feature-point,
.box-feature-point-mobile {
  float: left;
  width: 16.6%;
  padding: 25px 47.5px;
}

.box-feature-point-mobile {
  display: none;
}

.feature-content-view-mobile .modal-header {
  padding: 1rem 1rem 0;
}

.feature-content-view-mobile .modal-body {
  font-size: 14px;
  line-height: 1.5;
  padding: 0 1rem 1rem;
}

.feature-info {
  float: left;
  width: 100%;
  margin: 25px 0 0 0;
}

.feature-info h6 {
  font-size: 22px;
  line-height: 29px;
  float: left;
  width: 100%;
  text-align: center;
}

.box-feature-container .feature-point {
  float: left;
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  cursor: pointer;
}

.box-feature-container .feature-point:hover {
  background-color: #efefef;
}

.box-feature-container .feature-point img {
  float: left;
  width: 50%;
  margin: 25%;
}

.box-feature {
  float: left;
  width: 100%;
  background: #ffffff;
}

.feature-container {
  float: left;
  width: 100%;
  position: relative;
}

.box-feature-title {
  float: left;
  width: 100%;
  background-color: #121212;
  padding: 15px 0 80px;
}

.box-feature-title h3 {
  font-size: 42px;
  line-height: 55px;
  color: #fff;
  text-align: center;
}

.feature-content {
  float: left;
  width: 100%;
  color: #000;
  border: 1px solid #dbdbdb;
  border-radius: 25px;
  background-color: #efefef;
  padding: 56px 33px 46px;
}

.feature-content-view {
  position: relative;
  display: none;
}

.feature-content-view img {
  position: absolute;
  top: -74px;
}

/* ===================================== */

.feature-view-1 img {
  left: 1%;
}

.feature-view-2 img {
  left: 20%;
}

.feature-view-3 img {
  left: 38%;
}

.feature-view-4 img {
  left: 57%;
}

.feature-view-5 img {
  left: 75%;
}

.feature-view-6 img {
  left: 94%;
}

/* ======================================== */

.feature-content-view-mobile {
  display: none;
  visibility: hidden;
}

.modal-header {
  border-bottom: none !important;
}

.feature-content-view-mobile .modal-header .close {
  bottom: 0;
}

.feature-content-view-mobile .modal-dialog {
  width: 80%;
}

.feature-content h4 {
  font-size: 25px;
}

.feature-content p {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

.box-feature .box-accent2 {
  float: left;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.box-feature .box-accent2 img {
  float: left;
  width: 100%;
}

.service-container {
  float: left;
  width: 80%;
  margin: 40px 10% 50px;
}

.service-container-inner {
  float: left;
  width: 108%;
  margin: 0 0 0 -4%;
}

.box-service {
  float: left;
  width: 25%;
  margin: 0 0 25px 0;
}

.box-image-container {
  float: left;
  width: 50%;
  margin: 0 25%;
  position: relative;
  display: flex;
  justify-content: center;
}

.box-image-container .img-content {
  position: absolute;
  width: 65%;
  top: 60px;
}

.info-service {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
}

.info-service h6 {
  float: left;
  width: 80%;
  font-family: "Funnel Display", sans-serif;
  text-align: center;
  font-size: 20px;
  line-height: 34px;
}

.our-product-inner {
  float: left;
  width: 100%;
}

.our-product-inner h3 {
  font-family: "Funnel Display", sans-serif;
  font-size: 38px;
  line-height: 44px;
  margin: 50px 0 20px;
}

.our-product-inner p {
  font-family: "Funnel Display", sans-serif;
  font-size: 24px;
  line-height: 36px;
  margin: 15px 0;
  width: 100%;
  text-align: justify;
}

.product-description {
  float: left;
  width: 40%;
  display: table;
}

/* .box-product-description {
    display: table-cell;
    vertical-align: middle;
    width: 40%;
} */

.product-description h3 {
  font-size: 34px;
  line-height: 44px;
}

.product-description p {
  font-size: 18px;
  line-height: 23px;
}

.box-find-more {
  margin: 30px 0;
}

.box-find-more .btn-light {
  font-family: "Funnel Display", sans-serif;
  font-size: 16px;
  line-height: 21px;
  color: #000;
  padding: 0.8rem 15px;
  border-radius: 0;
}

.cranium-product {
  width: calc(48% - 50px);
}

.cranium-product h2 {
  font-size: 49px;
  line-height: 60px;
  margin: 20px 0 50px;
}

.line-sparator {
  float: left;
  border-left: 1px solid #fff;
  margin: 13% 0 13%;
}

.box-product-image {
  float: left;
  width: 100%;
  /* padding: 0 0 0 80px; */
}

.box-product-image img {
  float: left;
  width: 100%;
}

.box-project-management {
  float: left;
  width: 100%;
  background-color: #121212;
}

.box-project-container {
  float: left;
  width: 80%;
  margin: 94px 10%;
  display: table;
}

.box-project-container h2 {
  width: 40%;
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  font-size: 36px;
  line-height: 47px;
  color: #ffffff;
}

.project-management-flow {
  float: left;
  width: 100%;
  padding: 0 0 0 100px;
  display: flex;
  justify-content: center;
}

.box-flow {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}

.project-management-flow .desktop,
.project-management-flow .mobile {
  float: left;
  width: 100%;
}

.project-management-flow .mobile {
  display: none;
}

.project-management-description {
  float: left;
  width: 40%;
  display: table;
}

.project-management-description .box-title {
  display: table-cell;
  vertical-align: middle;
}

.project-management-description .box-title h2 {
  width: 100%;
  font-weight: bold;
  font-size: 36px;
  line-height: 47px;
  color: #fff;
  text-align: center;
}

.project-management-description p {
  float: left;
  color: #fff;
  font-size: 15px;
  width: 100%;
}

.box-technology-stack {
  float: left;
  width: 100%;
  background-color: white;
  min-height: 300px;
  color: #000;
}

.box-technology-stack h2 {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 62px;
  line-height: 81px;
  margin: 25px 0;
}

.box-address {
  float: left;
  width: 100%;
  background-color: #fff;
  color: #000;
}

.box-address-content {
  float: left;
  width: 30%;
  margin-left: 10%;
}

.address-desc {
  float: left;
  width: 100%;
  margin: 0 0 24px 0;
}

.address-desc .address-img {
  float: left;
  width: 5%;
  max-width: 24px;
}

.address-desc .address-img img {
  width: 100%;
}

.address-content p {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  line-height: 32px;
  margin: 0 0 0 15px;
}

.box-address-img {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
}

.box-our-team {
  float: left;
  width: 100%;
}

.box-our-team-container {
  position: relative;
  float: left;
  width: 100%;
}

.team-image-back {
  float: left;
  width: 100%;
}

.team-image-back img {
  float: left;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.team-image-back img,
.team-image-canvas,
.desc-middle {
  height: 682px;
}

.our-team-desc {
  position: absolute;
  width: 30%;
  left: 10%;
  color: #fff;
  display: table;
}

.desc-middle {
  display: table-cell;
  vertical-align: middle;
}

.desc-middle .color {
  float: left;
  background-color: #e9ac11;
  font-size: 24px;
  line-height: 1;
  padding: 5px 20px;
}

.desc-middle h4 {
  float: left;
  width: 100%;
  font-size: 48px;
  line-height: 62px;
  margin: 0 0 30px;
}

.desc-middle p {
  float: left;
  font-size: 24px;
  line-height: 1;
  padding: 5px 0;
}

.content-map {
  position: absolute;
  left: 12%;
  top: -1%;
  transform: translate(0px, 7%);
  width: 78%;
  height: 85.5%;
}


/* Style Request A Quote */

.box-formulir-one .modal-dialog,
.box-formulir-demo .modal-dialog {
  margin: 1.75rem auto;
  max-width: 605px;
}

.modal-header {
  position: relative;
  display: block;
}

.box-formulir-one .close,
.box-formulir-demo .close {
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  bottom: unset !important;
  position: absolute !important;
  top: 8px !important;
  right: 15px !important;
  font-size: 3rem;
  font-weight: 300;
}

.box-formulir-one .close p,
.box-formulir-demo .close p,
#sidebar p {
  font-size: 12px;
  line-height: 10px;
  letter-spacing: 0.03em;
  color: #000000;
}

.modal-header p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
  position: relative;
  bottom: 8rem;
}

.modal-title {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  padding: 0 8%;
  margin-bottom: 16px;
}

.modal-footer .btn-primary {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  height: 40px;
}

.modal-backdrop {
  position: relative;
}

.modal-body .form-control {
  width: 100%;
  min-height: 50px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: #737373;
  font-size: 14px;
  line-height: 17px;
}

.modal-body .form-group p,
.modal-body .form-group .custom-control-label {
  font-size: 14px;
  line-height: 17px;
  color: #495057;
  margin: 10px 0;
}

.modal-body .form-group .custom-control-label::before,
.modal-body .form-group .custom-control-label::after {
  top: 10px;
}

.box-formulir-one .modal-body {
  padding: 10px 32px 32px;
}

.modal-body .form-group-custom {
  float: left;
  width: 80% !important;
  margin: 0 0 30px;
}

.form-group-custom .option-label {
  float: left;
  width: 100%;
  margin: 0 0 15px 0;
  font-size: 16px;
  line-height: 19px;
  color: #313131;
}

.form-group-custom .custom-control-inline {
  float: left;
  width: 50%;
  margin: 0 !important;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.form-group-custom .custom-control-label {
  font-size: 14px;
  line-height: 17px;
  color: #313131;
}

.form-group-custom .form-control {
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid #313131 !important;
  border-radius: 0 !important;
  transition: none !important;
  line-height: 1 !important;
  padding: 0 0.375rem 5px !important;
  min-height: auto !important;
  font-size: 16px;
}

.modal-body .form-group-custom .form-control:focus {
  box-shadow: none !important;
}

.modal-body .form-control::placeholder {
  font-size: 14px;
  line-height: 17px;
}

.modal-body .form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.1);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.box-formulir-one .modal-footer {
  padding: 0;
}

.box-formulir-one .btn-primary {
  width: 100%;
  height: 50px;
  background: var(--primary);
  border-radius: 10px;
  font-size: 13px;
  line-height: 16px;
  color: #ffffff;
  margin: 0;
}

/* Email Tempalte Start */

.mail-box {
  background-color: #fff;
  color: #000;
}

.main-container {
  float: left;
  width: 50%;
  margin-left: 25%;
  margin-right: 25%;
  margin-top: 10%;
  margin-bottom: 10%;
  background-color: rgba(0, 0, 0, 0.05);
}

.header-container {
  float: left;
  width: 100%;
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #efefef;
  border: 1px solid #dbdbdb;
}

.header-container h3 {
  float: left;
  width: 60%;
  margin-bottom: 0;
  padding: 0.5rem;
  font-size: 30px;
}

.header-container p {
  float: left;
  width: 40%;
  margin-bottom: 0;
  padding: 0.5rem;
  font-size: 16px;
}

.content-container {
  float: left;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-bottom: 2rem;
}

.content-container h4 {
  float: left;
  width: 100%;
  font-size: 25px;
}

.content-list0 {
  float: left;
  width: 100%;
  background-color: #efefef;
  border: 1px solid #dbdbdb;
}

.content-list0 p {
  float: left;
  width: 40%;
  padding: 0.5rem;
  margin-bottom: 0;
  font-size: 16px;
}

.content-list0 h6 {
  float: left;
  width: 60%;
  padding: 0.5rem;
  margin-bottom: 0;
  font-size: 16px;
}

.content-list1 {
  float: left;
  width: 100%;
  background-color: #dbdbdb;
  border: 1px solid #dbdbdb;
}

.content-list1 p {
  float: left;
  width: 40%;
  padding: 0.5rem;
  margin-bottom: 0;
  font-size: 16px;
}

.content-list1 h6 {
  float: left;
  width: 60%;
  padding: 0.5rem;
  margin-bottom: 0;
  font-size: 16px;
}

.footer-container {
  float: left;
  width: 100%;
  padding: 1rem;
  margin-bottom: 2rem;
}

.footer-container p {
  float: left;
  width: 30%;
  margin-left: 40%;
  padding: 0.5rem;
  margin-bottom: 0;
  text-align: right;
  font-size: 16px;
}

.footer-container h6 {
  float: left;
  width: 30%;
  padding: 0.5rem;
  margin-bottom: 0;
  margin-top: 0.3rem;
  font-size: 16px;
}

/* Email Tempalte End */

/* ERP Style Start */

.erp-container {
  float: left;
  width: 100%;
}

.box-erp {
  float: left;
  width: 100%;
}

.erp-banner,
.banner-back,
.banner-shadows,
.banner-back-right,
.box-banner-content {
  height: 100%;
  min-height: 1000px;
}

.erp-banner {
  position: relative;
  width: 100%;
}

.erp-banner-inner {
  position: inherit;
  float: left;
  width: 100%;
}

.banner-back {
  position: absolute;
  z-index: 1;
  width: 100%;
  background: linear-gradient(180deg, #415fe5 -8.22%, #2baff9 54.7%);
}

.banner-shadows {
  position: absolute;
  z-index: 2;
  width: 100%;
}

.banner-back-right {
  position: absolute;
  z-index: 3;
  right: 0;
  width: 50%;
}

.box-banner-content {
  padding: 15vh 0 0;
}

.box-banner-content {
  position: relative;
  z-index: 4;
  bottom: 0;
  width: 80%;
  left: 10%;
  display: flex;
  justify-content: center;
}

.banner-content-table {
  position: inherit;
  width: 100%;
  background: linear-gradient(176.06deg, #e9ac11 -30.48%, #e97511 188.4%);
  box-shadow: 0px -11px 39px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.banner-content {
  display: table;
  width: 100%;
  padding: 100px 60px 0;
}

.banner-content-description,
.banner-content-image {
  margin-top: -10rem;
}

.box-content-description {
  width: 90%;
  color: #fff;
}

.box-content-description img {
  width: 100%;
}

.banner-content-description {
  width: 50%;
  display: table-cell;
  vertical-align: top;
}

.erp-feature-title h2,
.erp-module-title h2 {
  font-size: 62px;
  line-height: 68px;
}

.banner-content-description h2 {
  font-size: 52px;
  line-height: 68px;
  margin: 0 0 30px 0;
}

.banner-content-description p {
  font-size: 18px;
  line-height: 23px;
  margin: 0;
}

.banner-content-image {
  width: 50%;
  display: table-cell;
  vertical-align: top;
}

.erp-banner-inner .banner-bottom {
  width: 100%;
  position: absolute;
  z-index: 5;
  bottom: -3px;
  display: block !important;
}

.banner-bottom img {
  width: 100%;
}

.box-btn-demo {
  float: left;
  width: 100%;
  text-align: center;
  display: none;
}

.box-btn-demo .btn-primary {
  height: 45px;
  padding: 12px 20px;
  background: var(--primary);
  border-radius: 40px;
  font-size: 14px;
  line-height: 18px;
  color: #dddddd;
  margin: 30px 0;
}

.box-formulir-demo .btn-primary {
  width: 100%;
  height: 50px;
  background: #e97511;
  border-radius: 10px;
  font-size: 13px;
  line-height: 16px;
  color: #ffffff;
  border-color: rgb(233, 117, 17);
  margin: 0;
}

.box-formulir-demo .btn-primary.focus,
.box-formulir-demo .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgb(233, 117, 17);
  border-color: rgb(233, 117, 17);
}

.box-formulir-demo .modal-body {
  padding: 30px;
}

.box-formulir-demo .modal-footer {
  padding: 30px 0 0;
}

.box-request-demo {
  float: left;
  width: 100%;
}

.box-request-demo p {
  font-size: 10px;
  line-height: 13px;
  color: #ffffff;
}

.box-request-demo img {
  width: 5% !important;
}

.box-formulir-demo .modal-header {
  border-bottom: none;
}

.erp-feature {
  float: left;
  width: 100%;
}

.erp-feature-container {
  float: left;
  width: 90%;
  margin: 30px 5%;
}

.box-erp-feature {
  float: left;
  width: 100%;
}

.erp-feature-title {
  float: left;
  width: 100%;
  position: relative;
  margin: 30px 0;
}

.erp-feature-title .title-sparator,
.erp-module-title .title-sparator {
  float: left;
  height: 44px;
  margin: 18px 10px 18px 0;
  border: 5px solid #e97511;
}

.erp-feature-title h2 {
  line-height: 81px;
  color: #121212;
  margin: 0;
}

.erp-feature-description {
  float: left;
  width: 104%;
  margin: 0 0 0 -2%;
  display: flex;
  flex-wrap: wrap;
}

.description-content {
  float: left;
  width: 33.3%;
  padding: 22px 40px;
}

.box-description-content {
  float: left;
  width: 100%;
}

.erp-content-title {
  float: left;
  width: 100%;
  margin: 0 0 20px;
  display: flex;
  white-space: nowrap;
}

.content-title-image {
  float: left;
  width: 20%;
  max-width: 60px;
  height: 60px;
  box-shadow:
    0px 6px 6px rgba(0, 0, 0, 0.1),
    0px -1px 4px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.content-title-image img {
  position: relative;
  left: -7px;
}

.content-title-label {
  float: left;
  width: 60%;
  color: #e97511;
  padding: 15px 0 15px 20px;
}

.content-title-label p {
  font-size: 22px;
  line-height: 29px;
}

.content-description {
  float: left;
}

.content-description p {
  font-size: 16px;
  line-height: 21px;
  margin: 0;
}

.erp-module-container {
  float: left;
  width: 100%;
}

.box-background-module,
.background-key-gradient {
  min-height: 550px;
}

.box-background-module {
  position: relative;
  float: left;
  width: 100%;
}

.background-key-feature {
  position: absolute;
  top: 8rem;
  z-index: 2;
  width: 100%;
  height: 9vh;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.background-key-gradient {
  position: absolute;
  top: 11rem;
  z-index: 1;
  width: 100%;
  background: linear-gradient(180deg, #f9eac3 10.68%, rgba(249, 234, 195, 0) 100%);
}

.box-erp-module {
  float: left;
  width: 90%;
  margin: 0 5%;
  position: relative;
  z-index: 3;
}

.erp-module-title {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.erp-module-title h2 {
  font-weight: bold;
  line-height: 81px;
  text-align: center;
  color: #121212;
  margin: 0;
}

.box-erp-description {
  float: left;
  width: 102.4%;
  margin: 30px 0 30px -0.9%;
}

.box-feature-module-container {
  float: left;
  width: 14.2%;
  padding: 0 15px;
}

.box-feature-table {
  width: 100%;
  position: relative;
}

.box-feature-module,
.box-feature-module-mobile {
  float: left;
  position: relative;
  width: 100%;
  min-height: 264px;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  cursor: pointer;
}

.box-feature-module-mobile {
  display: none;
}

.box-feature-module:hover,
.box-feature-module:active,
.box-feature-module-mobile:hover,
.box-feature-module-mobile:active {
  background-color: #efefef;
}

.feature-module-img {
  float: left;
  width: 40%;
  margin: 25px 30% 20px 30%;
}

.feature-module-img img {
  width: 100%;
}

.box-feature-module-container p {
  position: absolute;
  bottom: 30px;
  width: 80%;
  left: 10%;
  font-size: 1.2vmax;
  line-height: 31px;
}

.feature-module-list {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.erp-description-detail {
  float: left;
  width: 100%;
  background: #ffffff;
  box-shadow: 4px 4px 11px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px 50px;
}

.description-detail-content {
  float: left;
  width: 100%;
  position: relative;
  display: none;
}

/* ================================================= */

.description-detail-content img {
  position: absolute;
  top: -60px;
}

.view-module-1 img {
  left: 2%;
}

.view-module-2 img {
  left: 17.5%;
}

.view-module-3 img {
  left: 33%;
}

.view-module-4 img {
  left: 48.5%;
}

.view-module-5 img {
  left: 64%;
}

.view-module-6 img {
  left: 79.5%;
}

.view-module-7 img {
  left: 95%;
}

/* ================================================= */

.erp-description-detail-mobile {
  display: none;
}

.erp-description-detail-mobile .modal-header .close {
  bottom: 0;
}

.erp-description-detail-mobile .modal-dialog {
  width: 80%;
}

.erp-description-detail-mobile .modal-header {
  padding: 1rem 1rem 0;
}

.erp-description-detail-mobile .modal-body {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  padding: 0 1rem 1rem;
}

.description-detail-content p {
  font-size: 26px;
  line-height: 34px;
}

.erp-galery-project {
  float: left;
  width: 100%;
}

.box-erp-galery-project {
  float: left;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.box-erp-galery-mobile {
  float: left;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
  display: none;
}

.galery-image {
  float: left;
  width: 100%;
}

.galery-image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.galery-project-image,
.left-galery-project-image,
.right-galery-project-image {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.galery-project-image {
  float: left;
  width: 28%;
  height: 300px;
  margin-left: 1%;
  margin-right: 1%;
}

.left-galery-project-image {
  float: left;
  width: 20%;
  height: 300px;
  margin-right: 1%;
}

.right-galery-project-image {
  float: right;
  width: 18%;
  height: 300px;
  margin-left: 1%;
}

.box-erp-galery-mobile .prevArrowBtn,
.box-erp-galery-mobile .nextArrowBtn {
  position: absolute;
  z-index: 10;
  top: 40%;
  width: 50px;
  height: 50px;
  background: #e97511;
}

.box-erp-galery-mobile .nextArrowBtn {
  right: -23px;
}

.box-erp-galery-mobile .prevArrowBtn {
  left: -23px;
}

.box-erp-galery-mobile .prevArrowBtn img,
.box-erp-galery-mobile .nextArrowBtn img {
  width: 12px;
  height: 22px;
}

.box-erp-galery-mobile .prevArrowBtn img {
  margin: 0 5px 0 0;
}

.box-erp-galery-mobile .nextArrowBtn img {
  margin: 0 0 0 5px;
}

.galery-preview img {
  height: 235px;
  object-position: center;
  object-fit: cover;
}

.erp-contact-us {
  float: left;
  width: 100%;
}

.box-erp-contact-us {
  float: left;
  width: 80%;
  margin: 50px 10% 100px;
  display: table;
}

.contact-us-detail-left {
  width: 45%;
  display: table-cell;
  vertical-align: middle;
}

.contact-us-detail-right {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}

.contact-us-detail-right img {
  float: left;
  width: 80%;
}

.contact-us-table {
  display: table-cell;
  vertical-align: middle;
}

.contact-us-table h3 {
  float: left;
  width: 100%;
  font-size: 36px;
  line-height: 47px;
  margin: 0 0 30px 0;
}

.contact-us-table .contact-us-desc {
  float: left;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.contact-us-image {
  float: left;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.contact-us-table .btn-warning {
  float: left;
  height: 60px;
  padding: 10px 30px;
  background: #e97511;
  border-radius: 40px;
  font-size: 20px;
  line-height: 26px;
  color: #ffffff;
}

.contact-us-table .btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
  color: #ffffff;
  background-color: #e97511;
  border-color: #e97511;
}

.contact-us-table .btn-warning.focus,
.btn-warning:focus {
  box-shadow: 0 0 0 0.2rem #e97511;
}

.contact-us-table p {
  float: left;
  width: 10%;
  color: #828282;
  font-size: 20px;
  line-height: 1;
  padding: 20px 10px;
}

.box-contact-media {
  float: left;
  display: flex;
  justify-content: center;
  width: 50%;
  max-width: 215px;
}

.box-contact-media a {
  float: left;
  width: 33.3%;
  padding: 0 5px;
  display: flex;
  justify-content: center;
}

.box-media-inner {
  float: left;
  width: 33.3%;
  padding: 0 10px;
}

.contact-media {
  position: relative;
  float: left;
  width: 100%;
  max-width: 60px;
  min-width: 60px;
  height: 60px;
  border: 2px solid #e97511;
  box-sizing: border-box;
  border-radius: 50%;
}

.contact-media .fa-contact {
  font-size: 30px;
  color: #e97511;
  position: absolute;
  top: 10px;
  left: 13px;
}

.contact-media .fa-email {
  font-size: 30px;
  color: #e97511;
  position: absolute;
  top: 10px;
  left: 13px;
}

/* ERP Style End */

/* Career Style start */

.career {
  float: left;
  width: 100%;
}

.career-banner,
.career-our-team {
  float: left;
  width: 100%;
}

.box-career-banner {
  position: relative;
  width: 100%;
  height: 70vh;
}

.box-career-banner .banner-back {
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
  height: 65vh;
  background-repeat: no-repeat !important;
  background-position: right !important;
  background-size: contain !important;
}

.career-table {
  display: table;
  width: 70%;
  margin-left: 30%;
}

.box-banner-description {
  float: left;
  width: 50%;
}

.banner-descriptiaon {
  display: table-cell;
  vertical-align: middle;
  height: 70vh;
}

.banner-descriptiaon h2 {
  font-weight: bold;
  font-size: 48px;
  line-height: 62px;
  letter-spacing: 0.02em;
}

.banner-descriptiaon p {
  font-weight: normal;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
}

.box-career-our-team {
  float: left;
  width: 100%;
  height: 30vh;
}

.our-team-image {
  float: left;
  width: 33.3%;
  height: 30vh;
  background-repeat: no-repeat !important;
  background-position: right !important;
  background-size: cover !important;
}

/* Career Style End */

.white-popup {
  position: relative;
  background: #fff;
  padding: 25px;
  width: auto;
  max-width: 400px;
  margin: 0 auto;
}

/* ====== Zoom effect ======*/

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Service Page Detail Start */

.btn-translate,
.btn-translate:hover,
.btn-translate:focus,
.btn-translate:active {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

.ux {}

.service-mad-container,
.service-ux-container,
.service-ecommerce-container,
.service-cms-container {
  float: left;
  width: 100%;
  min-height: 82.5vh;
  margin-top: 120px;
}

.service-banner,
.service-banner-tablet,
.service-banner-phone {
  float: left;
  width: 100%;
  display: table;
}

.service-banner {
  height: 550px;
}

.service-banner-tablet,
.service-banner-phone {
  display: none;
}

.banner-table {
  display: table-cell;
  vertical-align: middle;
}

.banner-table h2 {
  text-align: center;
  font-weight: bold;
  font-size: 50px;
  line-height: 65px;
  text-transform: uppercase;
  color: #ffffff;
}

.box-service-content,
.ux-title {
  float: left;
  width: 100%;
}

.ux-content {
  float: left;
  width: 70%;
  margin: 0px 15% 5rem 15%;
}

.ux-title {
  position: relative;
  margin: 4rem 0px 1rem 0px;
}

.ux-title h3 {
  float: left;
  width: 50%;
  font-weight: bold;
  font-size: 34px;
  line-height: 40px;
}

.ux-content .ux-ph,
.ux-content .ux-point-bold {
  float: left;
  width: 100%;
  font-size: 21px;
  color: #333333;
}

.ux-content .ux-ph {
  margin: 0.5rem 0px;
}

.ux-content .ux-point-bold {
  margin: 1rem 0px 0px 0px;
}

/* Service Page Detail End */
/* style whatsapp button start */
.box-wa-button {
  position: fixed;
  z-index: 99;
  bottom: 15vh;
  right: 15px;
}

.box-wa-button .wa-button {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 100%;
  box-shadow: 5px 10px 18px #888888;
  background-color: #fff;
}

.wa-button img {
  opacity: 0.9;
}

.wa-button img:hover {
  opacity: 1;
  transition: 0.3s;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.wa-button {
  -webkit-animation: live 1.7s infinite ease-in-out;
  animation: live 1.7s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes live {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0.9);
  }

  40% {
    -webkit-transform: scale(1.1);
  }
}

@keyframes live {

  0%,
  80%,
  100% {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }

  40% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}

/* style whatsapp button end */

.nav-pills.box-togle {
  position: relative;
  right: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.box-address .nav-pills .nav-link.active,
.box-address .nav-pills .show>.nav-link {
  color: #3563ee;
  background-color: #e1e8fc;
}

.btn-light.active:focus,
.btn-light:active:focus {
  box-shadow: none;
}

/* style section about us */
.section-about {
  float: left;
  width: 70%;
  margin: 30px 15%;
  flex-wrap: wrap;
}

.about-text {
  float: left;
}

.section-about h2 {
  font-size: 62px;
  line-height: 81px;
  margin: 40px 0px 35px 0;
}

.section-about p {
  float: left;
  font-family: "Funnel Display", sans-serif;
  font-size: 24px;
  line-height: 36px;
  margin: 15px 0;
  width: 100%;
  text-align: justify;
}

.section-about a {
  cursor: pointer !important;
  text-decoration: underline !important;
  color: #4076c6 !important;
}

/* style section about us */
/* @media screen and (min-width: 1025px) and (max-width: 1440px) {} */